home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libslp1 / README < prev    next >
Text File  |  2005-02-09  |  4KB  |  119 lines

  1. Openslp README
  2. ===============
  3.  
  4. 1 - Introduction
  5. 2 - Roadmap
  6. 3 - Build 
  7. 4 - Install 
  8. 5 - Users Guide
  9. 6 - Developers Guide
  10. 7 - FAQ
  11.  
  12.  
  13. 1 - Introduction
  14. -----------------
  15. The OpenSLP project is an effort to develop an open-source implementation of
  16. Service Location Protocol suitable for commercial and non-commercial 
  17. application.
  18.  
  19. OpenSLP 1.3.0 is a develper release of the cutting edge OpenSLP code.  If you
  20. are looking for a stable release, you should download the latest revision of
  21. the 1.2.x series. 
  22.  
  23. OpenSLP 1.2.1 is the second release of the 1.2.x series.  This release contains
  24. several bug fixes - mostly accumlated through the efforts of the SuSE team in 
  25. Germany. However, others have contributed as well over time. 
  26.  
  27. Known Issues:
  28.  
  29.    - This code works on Linux and Windows, but has not been thoroughly tested 
  30.      on Solaris or other platforms. Please help out in this respect. Please
  31.      feel free to send patches for your OS directly to me or to the
  32.      openslp-devel@sourceforge.net mailing list.
  33.  
  34.  
  35. 2 - Roadmap
  36. ------------
  37. For more information about the roadmap for OpenSLP 1.2.x please take a look at
  38.    
  39.    http://www.openslp.org/roadmap.html
  40.  
  41.  
  42. 3 - Building OpenSLP
  43. ---------------------
  44. Building OpenSLP requires the proper installation of automake, autoconf and
  45. libtool.  To build OpenSLP please use the following steps:
  46.  
  47.     - Unzip and untar the openslp-x.x.x.tar.gz tarball.
  48.    
  49.       $ tar -zxf openslp-x.x.x.tar.gz 
  50.           
  51.     - Run the autogen.sh script to generate configure script. Do not be
  52.       alarmed if the autogen script prints a few errors.  Try the resulting
  53.       configure (next step) script anyway.  If the ./configure script already
  54.       exists, skip running ./autogen.sh
  55.       
  56.       $ cd openslp-x.x.x
  57.       $ ./autogen.sh
  58.           
  59.     - Run the configure script to create openslp make files.  Please note that
  60.       the configure script accepts several --enable-xxxx and --disable-xxxx
  61.       options that should be interesting to you.  Run ./configure --help and 
  62.       read the details of each of these switches. If the configure
  63.       script fails... now you have a problem.
  64.      
  65.       $ ./configure --help
  66.       $ ./configure
  67.           
  68.     - Run the top level make file (you need to use GNU make)
  69.     
  70.       $ make
  71.           
  72.     - If the make is successful, look for the following binaries:
  73.       
  74.       slpd/slpd
  75.       libslp/.libs/libslp.so
  76.       test/.libs/*
  77.  
  78.  
  79. 4 - Installing OpenSLP       
  80. -----------------------
  81. To install OpenSLP make the install target in the top level make file
  82.     
  83.     $ make install
  84.     
  85. Installation of OpenSLP creates the following files:
  86.     
  87.     /usr/sbin/slpd 
  88.     /usr/lib/libslp.so.x.x (and several appropriate links)
  89.     /usr/lib/libslp.a 
  90.     /etc/slp.conf          (old slp.conf is renamed)
  91.     /etc/slp.reg           (old slp.reg is renamed)
  92.     
  93.  
  94. 5 - OpenSLP Users Guide 
  95. ------------------------
  96. Rather than be repetitive in this document, the reader is refered to a fairly
  97. complete OpenSLP users guide that is available in the doc/html directory
  98. of the OpenSLP distribution or on the web at:
  99.     
  100.     http://www.openslp.org/doc/html/UsersGuide
  101.     
  102. The OpenSLp users guide gives instruction on how network and system
  103. administrators should configure and use OpenSLP once it is installed
  104.  
  105.  
  106. 6 - OpenSLP Programmers Guide
  107. ------------------------------
  108. Again, to avoid repetition, the reader is refered to a the Programmers Guide
  109. available in the doc/html directory of the OpenSLP distribution or on the web 
  110. at:
  111.    
  112.     http://www.openslp.org/doc/html/ProgrammersGuide
  113.     
  114.     
  115. 7 - FAQ
  116. --------
  117. The frequently asked questions have been moved to a faq.html file located in 
  118. the doc directory of the OpenSLP tarball.  
  119.